summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2022-11-11 08:12:39 +0100
committerGitHub <noreply@github.com>2022-11-11 08:12:39 +0100
commit5eb30c7827959075cd240f39c6ab57d2c2a8197e (patch)
tree02667b005c300cadac48ba8d74ba79106231c2ba
parentir/texture_pass: Use host_info instead of querying Settings::values (#9176) (diff)
parentMe likes (diff)
downloadyuzu-5eb30c7827959075cd240f39c6ab57d2c2a8197e.tar
yuzu-5eb30c7827959075cd240f39c6ab57d2c2a8197e.tar.gz
yuzu-5eb30c7827959075cd240f39c6ab57d2c2a8197e.tar.bz2
yuzu-5eb30c7827959075cd240f39c6ab57d2c2a8197e.tar.lz
yuzu-5eb30c7827959075cd240f39c6ab57d2c2a8197e.tar.xz
yuzu-5eb30c7827959075cd240f39c6ab57d2c2a8197e.tar.zst
yuzu-5eb30c7827959075cd240f39c6ab57d2c2a8197e.zip
-rw-r--r--src/yuzu/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index c27f8196d..01a002e4f 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -342,6 +342,7 @@ GMainWindow::GMainWindow(std::unique_ptr<Config> config_, bool has_broken_vulkan
const auto override_build =
fmt::format(fmt::runtime(std::string(Common::g_title_bar_format_idle)), build_id);
const auto yuzu_build_version = override_build.empty() ? yuzu_build : override_build;
+ const auto processor_count = std::thread::hardware_concurrency();
LOG_INFO(Frontend, "yuzu Version: {}", yuzu_build_version);
LogRuntimes();
@@ -361,6 +362,7 @@ GMainWindow::GMainWindow(std::unique_ptr<Config> config_, bool has_broken_vulkan
}
LOG_INFO(Frontend, "Host CPU: {}", cpu_string);
#endif
+ LOG_INFO(Frontend, "Host CPU Threads: {}", processor_count);
LOG_INFO(Frontend, "Host OS: {}", PrettyProductName().toStdString());
LOG_INFO(Frontend, "Host RAM: {:.2f} GiB",
Common::GetMemInfo().TotalPhysicalMemory / f64{1_GiB});